home *** CD-ROM | disk | FTP | other *** search
- program Dc_view;
-
- uses
- Forms,
- Dc_main in 'DC_MAIN.PAS' {Form1},
- Dc_about in 'DC_ABOUT.PAS' {AboutBox},
- Dc_dlog in 'DC_DLOG.PAS' {BtnRightDlg},
- Cut_sub in 'CUT_SUB.PAS';
-
- {$R *.RES}
-
- begin
- Application.Title := '電脳倶楽部 DocumentViewer';
- Application.HelpFile := 'D:\PROGRAM\DC_HELP\DC_VIEW.HLP';
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TAboutBox, AboutBox);
- Application.CreateForm(TBtnRightDlg, BtnRightDlg);
- Application.Run;
- end.
-